-
Notifications
You must be signed in to change notification settings - Fork 569
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rework make realinstall and uninstall #3435
Conversation
rusty-snake
commented
May 27, 2020
- remove -c, the manpage says it is ignored
-
$(DESTDIR)/$ (bindir)/. ->$(DESTDIR)$ (bindir) and so on - install contrib by file glob (*.py, *.sh)
- split long lines
- remove -c, the manpage says it is ignored - $(DESTDIR)/$(bindir)/. -> $(DESTDIR)$(bindir) and so on - install contrib by file glob (*.py, *.sh) - split long lines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
if [ ! -d $(DESTDIR)$(sysconfdir)/apparmor.d ]; then \ | ||
install -m 0755 -d $(DESTDIR)$(sysconfdir)/apparmor.d \ | ||
fi | ||
install -m 0644 etc/apparmor/firejail-default $(DESTDIR)$(sysconfdir)/apparmor.d | ||
if [ ! -d $(DESTDIR)$(sysconfdir)/apparmor.d/local ]; then \ | ||
install -m 0755 -d $(DESTDIR)$(sysconfdir)/apparmor.d/local \ | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reasons why we need to check this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still present: #3435 (comment) |
revert long-line split and fix bash-completion
And remove the extraneous semicolon at the end of the command string. See also commit dae3933 ("rework make realinstall and uninstall (netblue30#3435)", 2020-06-04).
Changes: * Remove / after `$(DESTDIR)` * Remove useless -c * Use 0755 instead of 755 * Use -d after -m See also commit dae3933 ("rework make realinstall and uninstall (netblue30#3435)", 2020-06-04).
Changes: * Remove / after `$(DESTDIR)` * Remove useless -c * Use 0755 instead of 755 * Use -d after -m See also commit dae3933 ("rework make realinstall and uninstall (netblue30#3435)", 2020-06-04).